home *** CD-ROM | disk | FTP | other *** search
/ funcom 2000 Presskit / 000721_1312 (fun.com).iso / lyd.cst / 00015_Script_activelink < prev    next >
Text File  |  2000-04-18  |  484b  |  21 lines

  1. on mouseEnter me
  2.   set the cursor of sprite (the spriteNum of me) to 200
  3.   set the visible of sprite 100 to 1
  4. end
  5.  
  6. on mouseWithin me
  7.   set the locH of sprite 100 = the mouseH
  8.   set the locV of sprite 100 = the mouseV  
  9.   updateStage
  10. end
  11.  
  12.  
  13. on mouseLeave me
  14.   set the cursor of sprite (the spriteNum of me) to -1
  15.   set the visible of sprite 100 to 0
  16. end
  17.  
  18. on mouseDown me
  19.   set the cursor of sprite (the spriteNum of me) to -1
  20.   set the visible of sprite 100 to 0
  21. end